Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/yuzujin99/oci_compose
oci compose collection
https://github.com/yuzujin99/oci_compose
Last synced: 4 days ago
JSON representation
oci compose collection
- Host: GitHub
- URL: https://github.com/yuzujin99/oci_compose
- Owner: yuzujin99
- Created: 2021-01-05T13:21:08.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-07-26T03:20:31.000Z (over 1 year ago)
- Last Synced: 2024-10-27T01:48:30.971Z (21 days ago)
- Homepage:
- Size: 44.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# container compose
## containerfile
`docker build -t xxx .`
## run
`docker run -it xxx`
## compose
1. `cd` to service dir
2. `docker compose up -d` to start service
3. `docker compose down` to stop service## notice
- `./data` is service data stored locally, which is added to `.gitirnore`
- `.env`## podman
```sh
podman machine init
podman machine start
podman info
```