File: app-compose.yml

package info (click to toggle)
apache-log4j2 2.17.1-1~deb11u1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 21,328 kB
  • sloc: java: 174,836; xml: 26,222; sh: 97; jsp: 21; javascript: 7; makefile: 5
file content (21 lines) | stat: -rwxr-xr-x 413 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
version: "3"
services:
  sampleapp:
    container_name: sampleapp
    image: sampleapp
    environment:
      DOCKER_URI: http://socat:1234
      SERVICE_PARAMS: --spring.config.location=classpath:/,classpath:/application-local-docker.yml
    ports:
      - "5005:5005"
      - "8080:8080"
    networks:
      sample_network:
        aliases:
          - sampleapp

networks:
  sample_network:

volumes:
  pgdata: