Skip to content

Instantly share code, notes, and snippets.

@16Yongjin
Created September 1, 2019 09:54
Show Gist options
  • Save 16Yongjin/5a891cfb942ee2d962c61b4ac94aafdc to your computer and use it in GitHub Desktop.
Save 16Yongjin/5a891cfb942ee2d962c61b4ac94aafdc to your computer and use it in GitHub Desktop.
version: "2"
services:
app:
container_name: hufs-lecture-alarm
image: yongijn0802/hufs-lecture-alarm
environment:
POSTGRES_USER: ???
POSTGRES_PASSWARD: ???
POSTGRES_DB: jdbc:postgresql://db/lectures
TZ: "Asia/Seoul"
ports:
- 8081:8080
links:
- postgres:db
postgres:
container_name: postgres
build: ./postgres
ports:
- 5432
volumes:
- /data/postgres:/var/lib/postgresql/data
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment