Docker compose build args typo
This commit is contained in:
@@ -8,16 +8,9 @@
|
|||||||
"source": [
|
"source": [
|
||||||
"import requests\n",
|
"import requests\n",
|
||||||
"\n",
|
"\n",
|
||||||
"endpoint = \"http://localhost:80/get_missing_kids?pages=2\"\n",
|
"endpoint = \"http://localhost:80/get_missing_kids?pages={}\".format(2)\n",
|
||||||
"r = requests.get(endpoint)"
|
"r = requests.get(endpoint)\n",
|
||||||
]
|
"\n",
|
||||||
},
|
|
||||||
{
|
|
||||||
"cell_type": "code",
|
|
||||||
"execution_count": null,
|
|
||||||
"metadata": {},
|
|
||||||
"outputs": [],
|
|
||||||
"source": [
|
|
||||||
"r.text"
|
"r.text"
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -10,11 +10,11 @@ services:
|
|||||||
context: ./app_selenium
|
context: ./app_selenium
|
||||||
args:
|
args:
|
||||||
# arm64
|
# arm64
|
||||||
#ARG ARCH_G=linux-aarch64
|
#ARCH_G=linux-aarch64
|
||||||
#ARG ARCH_F=linux-aarch64
|
#ARCH_F=linux-aarch64
|
||||||
# amd64
|
# amd64
|
||||||
ARG ARCH_G=linux64
|
ARCH_G=linux64
|
||||||
ARG ARCH_F=linux-x86_64
|
ARCH_F=linux-x86_64
|
||||||
container_name: fetcher_app_selenium
|
container_name: fetcher_app_selenium
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
shm_size: 512mb
|
shm_size: 512mb
|
||||||
|
|||||||
@@ -8,11 +8,11 @@ services:
|
|||||||
context: ./app_selenium
|
context: ./app_selenium
|
||||||
args:
|
args:
|
||||||
# arm64
|
# arm64
|
||||||
ARG ARCH_G=linux-aarch64
|
ARCH_G=linux-aarch64
|
||||||
ARG ARCH_F=linux-aarch64
|
ARCH_F=linux-aarch64
|
||||||
# amd64
|
# amd64
|
||||||
#ARG ARCH_G=linux64
|
#ARCH_G=linux64
|
||||||
#ARG ARCH_F=linux-x86_64
|
#ARCH_F=linux-x86_64
|
||||||
container_name: fetcher_app_selenium
|
container_name: fetcher_app_selenium
|
||||||
restart: unless-stopped
|
restart: unless-stopped
|
||||||
shm_size: 512mb
|
shm_size: 512mb
|
||||||
|
|||||||
Reference in New Issue
Block a user