You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
502 B

6 months ago
version: "3.7"
services:
resource-service-api:
container_name: resource-service-api
hostname: resource-service-api
6 months ago
build:
context: ../resource-service-api
dockerfile: dockerfile
image: "resource-service-api"
command: ["java","-jar","/app/resource-service-api-0.1.jar"]
ports:
- 81:8181
restart: unless-stopped
networks:
- tech_network
6 months ago
networks:
tech_network:
name: tech_network
external: true
6 months ago
driver: bridge