21 lines
408 B
Plaintext
21 lines
408 B
Plaintext
---
|
|
title: Docker
|
|
---
|
|
|
|
import EarlyDoc from '/snippets/earlydoc.mdx';
|
|
import DockerDatabase from '/snippets/docker-database.mdx';
|
|
import DockerEnvvarApps from '/snippets/docker-envvar-apps.mdx';
|
|
|
|
<EarlyDoc />
|
|
|
|
<DockerDatabase />
|
|
|
|
|
|
# Create the container on command line
|
|
|
|
```bash
|
|
docker create --name postiz -v ./config:/config -p 4200:4200 -p 3000:3000 ghcr.io/postiz/postiz:latest
|
|
```
|
|
|
|
<DockerEnvvarApps />
|