This repository has been archived by the owner on Feb 22, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 50
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Correct docker repository for the ingestion server, update docs
- Loading branch information
1 parent
d726ad7
commit 6fd84c0
Showing
2 changed files
with
6 additions
and
4 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
version: "2.4" | ||
services: | ||
ingestion_server: | ||
image: ghcr.io/wordpress/openverse-ingestion-server:latest | ||
# Allow the image tag to be set to a specific version, default to latest | ||
image: ghcr.io/wordpress/openverse-ingestion_server:${IMAGE_TAG:-latest} | ||
ports: | ||
- "8001:8001" | ||
env_file: | ||
- .env | ||
dns: | ||
# Related to DNS management on the production box. | ||
# Not sure if this is strictly necessary, but it exists | ||
# in the current, running system so we are retaining it here. | ||
# 172.16.0.0–172.31.255.255 is a reserved IP range by the (IANA) for | ||
# private/internal networking. This specific IP is the dns resolution address | ||
# for a default AWS Virtual Private Cloud. | ||
- 172.31.0.2 |