first commit
This commit is contained in:
25
compose.yml
Normal file
25
compose.yml
Normal file
@@ -0,0 +1,25 @@
|
||||
services:
|
||||
postgres:
|
||||
image: postgres:15
|
||||
container_name: info-marche-quimpernetignet_postgres
|
||||
env_file:
|
||||
- .env
|
||||
- ../passwords/info-marche-quimpernetignet.pass
|
||||
volumes:
|
||||
- ./volumes/postgres:/var/lib/postgresql/data
|
||||
restart: unless-stopped
|
||||
listmonk:
|
||||
image: listmonk/listmonk:latest
|
||||
container_name: info-marche-quimpernetignet_listmonk
|
||||
depends_on:
|
||||
- postgres
|
||||
env_file:
|
||||
- .env
|
||||
- ../passwords/info-marche-quimpernetignet.pass
|
||||
ports:
|
||||
- "127.0.0.1:9010:9000"
|
||||
command: "./listmonk --static-dir=/listmonk/static"
|
||||
volumes:
|
||||
- ./volumes/uploads:/listmonk/uploads
|
||||
- ./conf/static:/listmonk/static
|
||||
restart: unless-stopped
|
Reference in New Issue
Block a user