mirror of
https://github.com/reonokiy/compose.git
synced 2025-06-14 20:56:47 +02:00
update
This commit is contained in:
parent
1b6f9321e7
commit
a2f5fde917
1 changed files with 25 additions and 0 deletions
25
self/docker-compose.yaml
Normal file
25
self/docker-compose.yaml
Normal file
|
@ -0,0 +1,25 @@
|
|||
services:
|
||||
tsdproxy:
|
||||
image: almeidapaulopt/tsdproxy:2
|
||||
volumes:
|
||||
- /var/run/docker.sock:/var/run/docker.sock
|
||||
- ${DATA_DIR:-./data}/tsdproxy/data:/data
|
||||
- ${DATA_DIR:-./data}/tsdproxy/config:/config
|
||||
restart: always
|
||||
ports:
|
||||
- "8080:8080"
|
||||
extra_hosts:
|
||||
- "host.docker.internal:host-gateway"
|
||||
|
||||
postgres:
|
||||
image: postgres:17
|
||||
restart: always
|
||||
environment:
|
||||
POSTGRES_DB: nokiy
|
||||
POSTGRES_USER: nokiy
|
||||
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD:-nokiy}
|
||||
volumes:
|
||||
- ${DATA_DIR:-./data}/postgres:/var/lib/postgresql/data
|
||||
labels:
|
||||
tsdproxy.enable: "true"
|
||||
tsdproxy.name: "postgres"
|
Loading…
Add table
Add a link
Reference in a new issue