Skip to content
Snippets Groups Projects
Commit 4f9c5d32 authored by Diego Giovane Pasqualin's avatar Diego Giovane Pasqualin
Browse files

Add docker-compose.yaml file

parent c8696ebc
No related branches found
No related tags found
No related merge requests found
Pipeline #
# Rename this file to .env before running docker-compose up
IMAGE_NAME=marula.c3sl.ufpr.br:5000/c3sl/agent-gesac
# database configuration
DB_USER=simmc
DB_NAME=simmc
DB_HOST=localhost
DB_PORT=5432
DB_PASS=changeme
version: '3.3'
services:
agent-gesac:
image: ${IMAGE_NAME}
build: src/
container_name: agent-gesac
volumes:
- type: tmpfs
target: /tmp
- type: volume
target: /home/gesac/restore
environment:
DB_USER: ${DB_USER}
DB_NAME: ${DB_NAME}
DB_HOST: ${DB_HOST}
DB_PORT: ${DB_PORT}
DB_PASS: ${DB_PASS}
restart: unless-stopped
read_only: 'true'
security_opt:
- no-new-privileges
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment