Last active
April 23, 2020 12:54
-
-
Save enesusta/ef9f8ca366256c6eecb098beaa7ad445 to your computer and use it in GitHub Desktop.
easy-bookmarks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
version: '3.1' | |
services: | |
easy-bookmarks: | |
container_name: easy-bookmarks | |
image: enesusta/easy-bookmarks:0.2 | |
ports: | |
- '8000:80' | |
networks: | |
bookmarks-net: | |
ipv4_address: 172.48.0.100 | |
easy-bookmarks-server: | |
container_name: easy-bookmarks-server | |
image: enesusta/easy-bookmarks-server:0.1 | |
ports: | |
- '9050:3000' | |
volumes: | |
- c:/Users/Enes/AppData/Local/Google/Chrome/User Data/Default:/data/json | |
networks: | |
bookmarks-net: | |
ipv4_address: 172.48.0.101 | |
networks: | |
bookmarks-net: | |
driver: bridge | |
ipam: | |
config: | |
- subnet: 172.48.0.0/24 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment