Update docker-compose.yml

This commit is contained in:
Dean Sanders 2023-11-24 23:03:50 +00:00 committed by GitHub
parent adf9dc6849
commit 22afd804b6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -2,9 +2,17 @@
version: "3" version: "3"
services: services:
app: app:
container_name: robodean_task
build: build:
context: . context: .
dockerfile: Dockerfile dockerfile: Dockerfile
restart: unless-stopped restart: unless-stopped
logging:
driver: splunk
options:
splunk-url: https://192.168.10.20:8088
splunk-token: aa6c1c61-d015-403a-b200-dd991275790d
splunk-insecureskipverify: 'true'
tag: "docker/{{.Name}}/{{.ID}}/{{.ImageName}}"
env_file: stack.env env_file: stack.env
... ...