mirror of
https://github.com/kevinveenbirkenbach/computer-playbook.git
synced 2024-11-21 20:31:02 +01:00
Changed network and volume names
This commit is contained in:
parent
842ccd54b4
commit
807b32da85
@ -5,8 +5,6 @@ services:
|
||||
image: postgres:13-alpine
|
||||
ports:
|
||||
- "9432:5432"
|
||||
networks:
|
||||
- listmonk
|
||||
environment:
|
||||
- POSTGRES_PASSWORD={{database_password}}
|
||||
- POSTGRES_USER={{database_username}}
|
||||
@ -17,10 +15,9 @@ services:
|
||||
interval: 10s
|
||||
timeout: 5s
|
||||
retries: 6
|
||||
container_name: database
|
||||
volumes:
|
||||
- type: volume
|
||||
source: listmonk-data
|
||||
source: database
|
||||
target: /var/lib/postgresql/data
|
||||
|
||||
application:
|
||||
@ -28,18 +25,12 @@ services:
|
||||
image: listmonk/listmonk:latest
|
||||
ports:
|
||||
- "127.0.0.1:{{http_port}}:9000"
|
||||
networks:
|
||||
- listmonk
|
||||
environment:
|
||||
- TZ=Etc/UTC
|
||||
container_name: listmonk_application
|
||||
depends_on:
|
||||
- database
|
||||
volumes:
|
||||
- ./config.toml:/listmonk/config.toml
|
||||
|
||||
networks:
|
||||
listmonk:
|
||||
|
||||
volumes:
|
||||
listmonk-data:
|
||||
database:
|
Loading…
Reference in New Issue
Block a user