26 lines
657 B
YAML
26 lines
657 B
YAML
services:
|
|
postgres:
|
|
image: postgres:15
|
|
container_name: listnetignet_postgres
|
|
env_file:
|
|
- .env
|
|
- ../passwords/listnetignet.pass
|
|
volumes:
|
|
- ./volumes/postgres:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
listmonk:
|
|
image: listmonk/listmonk:latest
|
|
container_name: listnetignet_listmonk
|
|
depends_on:
|
|
- postgres
|
|
env_file:
|
|
- .env
|
|
- ../passwords/listnetignet.pass
|
|
ports:
|
|
- "127.0.0.1:9008:9000"
|
|
command: "./listmonk --static-dir=/listmonk/static"
|
|
volumes:
|
|
- ./volumes/uploads:/listmonk/uploads
|
|
- ./conf/static:/listmonk/static
|
|
restart: unless-stopped
|